:root {
  --cor-amarelo: #ffcc00;
  --cor-preto: #111;
  --cor-texto: #222;
  --cor-muted: #666;

  --bg-branco: #fff;
  --bg-dark-1: rgba(0,0,0,.90);
  --bg-dark-2: rgba(0,0,0,.68);

  --largura-hero: 85%;
  --altura-hero: 400px;
  --raio-hero: 18px;

  --padding-secao: 55px;
  --padding-amarelo: 26px;
  --gap-grid: 18px;

  --raio-card: 10px;
  --sombra-card: 0 10px 22px rgba(0,0,0,.08);

  --altura-img-produto: 220px; 

  --titulo-secao: 28px;
  --subtexto-secao: 14px;

  --titulo-feature: 42px;
  --texto-feature: 15px;

  --altura-botao: 40px; 
  --raio-botao: 8px;

  --hover-subir: -2px;
  --hover-sombra: 0 14px 26px rgba(0,0,0,.14);

  --overlay-esquerda: 0.78;
  --overlay-meio: 0.38;
  --overlay-direita: 0.18;

  --gap-banner-amarelo: 26px;
}

header { gap: 24px; }
.main-nav ul li a { white-space: nowrap; }

.sec { padding: var(--padding-secao) 0; background: var(--bg-branco); }
.sec-yellow { padding: var(--padding-amarelo) 0; background: var(--cor-amarelo); }

.sec-head h2 {
  margin: 0;
  font-size: var(--titulo-secao);
  font-weight: 900;
  color: var(--cor-preto);
}
.sec-head p {
  margin: 4px 0 0;
  font-size: var(--subtexto-secao);
  font-weight: 600;
  color: rgba(0,0,0,.70);
}

/* --- BANNER (CARROSSEL) --- */
.hero-old {
  width: var(--largura-hero);
  margin: 18px auto var(--gap-banner-amarelo);
  height: var(--altura-hero);
  position: relative;
  overflow: hidden;
  border-radius: var(--raio-hero);
  background: #000;
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
  display: flex;
  align-items: center; 
}

.hero-slide.is-active { 
  opacity: 1; 
  visibility: visible;
  z-index: 2; 
}

.hero-slide img.bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.02);
  transition: transform 6s ease-out;
}

.hero-slide.is-active img.bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,var(--overlay-esquerda)) 0%,
    rgba(0,0,0,var(--overlay-meio)) 58%,
    rgba(0,0,0,var(--overlay-direita)) 100%
  );
}

.hero-content {
  position: relative; 
  z-index: 5;
  padding: 0 90px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  color: #fff;
  max-width: 980px;
}

.hero-content h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 2px 2px 10px rgba(0,0,0,.40);
}

.hero-content p {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
}

.hero-btn {
  margin-top: 18px;
  width: fit-content;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,.80);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 6px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hero-btn:hover {
  transform: translateY(var(--hover-subir));
  background: rgba(255,255,255,.10);
  border-color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-slide .hero-content h1,
.hero-slide .hero-content p,
.hero-slide .hero-content .hero-btn {
  opacity: 0; 
}

.hero-slide.is-active .hero-content h1 { animation: slideUpFade 0.8s ease forwards 0.2s; }
.hero-slide.is-active .hero-content p { animation: slideUpFade 0.8s ease forwards 0.4s; }
.hero-slide.is-active .hero-content .hero-btn { animation: slideUpFade 0.8s ease forwards 0.6s; }

.hero-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 10; 
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.hero-arrow:hover {
  background: rgba(0,0,0,.55);
  transform: translateY(-50%) scale(1.06);
}
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

/* --- GRADES DE PRODUTO --- */
.cards-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-grid);
}
.cards-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.product-card {
  background: #fff;
  border-radius: var(--raio-card);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.product-img {
  height: var(--altura-img-produto); 
  background: #fff; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; 
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}

.product-body { 
  padding: 16px; 
  display: flex;
  flex-direction: column;
  flex: 1; 
}

.product-body h3 { margin: 0 0 8px; font-size: 14px; font-weight: 800; color: #111; }
.product-code { display: block; font-size: 12px; font-weight: 700; color: rgba(0,0,0,.55); }

/* --- CLASSE DO PREÇO ADICIONADA AQUI --- */
.preco {
  font-size: 18px;
  font-weight: 800;
  color: #ff6600; /* Destaque em Laranja para chamar a atenção */
  margin: 6px 0 14px 0;
  font-family: 'Poppins', sans-serif;
}

/* --- BOTÕES DO CARD --- */
.card-buttons {
  margin-top: auto; 
  display: flex;
  flex-direction: column;
  gap: 8px; 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--altura-botao);
  width: 100%;
  border-radius: var(--raio-botao);
  font-weight: 900;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(var(--hover-subir));
  box-shadow: var(--hover-sombra);
}

/* Botão Carrinho (Amarelo) */
.btn-cart { 
  background: var(--cor-amarelo); 
  color: #111; 
  border: none; 
  cursor: pointer; 
}
.btn-cart:hover { background: #e6b800; }

/* Botão WhatsApp (Verde) */
.btn-whats { background: #22c55e; color: #fff; }
.btn-whats:hover { filter: brightness(.95); }

.btn-primary {
  background: var(--cor-amarelo);
  color: #111;
  width: auto;
  padding: 0 18px;
}
.btn-primary:hover { filter: brightness(.96); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(0,0,0,.18);
  color: #111;
  width: auto;
  padding: 0 18px;
}
.btn-outline:hover { background: rgba(0,0,0,.04); }

.sec-feature { background: #fff; }
.feature-container {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}
.feature-text h2 {
  margin: 0;
  font-size: var(--titulo-feature);
  font-weight: 900;
  color: #111;
  line-height: 1.08;
}
.linha-destaque {
  width: 60px; height: 5px;
  background: var(--cor-amarelo);
  margin: 16px 0 18px;
  border-radius: 4px;
}
.feature-text p {
  margin: 0 0 14px;
  font-size: var(--texto-feature);
  color: #555;
  line-height: 1.85;
  max-width: 70ch;
}
.feature-actions { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }

.feature-box { display: grid; gap: 12px; }
.feature-mini {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--sombra-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-mini:hover { transform: translateY(-3px); box-shadow: 0 16px 28px rgba(0,0,0,.12); }
.feature-mini strong { display: block; font-size: 14px; color: #111; }
.feature-mini span { display: block; margin-top: 4px; font-size: 13px; color: #666; }

/* --- SEÇÃO DE ENTREGA ESCURA --- */
.sec-dark {
  padding: calc(var(--padding-secao) + 20px) 0;
  background: #1a1a1a;
  color: #fff;
}

.delivery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.delivery-left h2 {
  margin: 0 0 30px 0;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
}

.delivery-items {
  display: grid;
  gap: 15px;
}

.delivery-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.delivery-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.delivery-item img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  opacity: 0.9;
}

.delivery-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  color: #fff;
}

.delivery-item p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* --- MAPA DA ENTREGA --- */
.map-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
}

.map-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  z-index: 2;
  display: block;
}

.map-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0) 0 18px, rgba(255, 255, 255, 0.04) 18px 19px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 22px, rgba(255, 255, 255, 0.04) 22px 23px);
  z-index: 1;
}

@media (max-width: 980px) {
  .hero-old { height: 320px; border-radius: 22px; width: 92%; }
  .hero-content { padding: 40px 24px; }
  .hero-content h1 { font-size: 38px; }
  .hero-content p { font-size: 16px; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-container { grid-template-columns: 1fr; }
  .feature-text h2 { font-size: 34px; }
  .delivery-container { grid-template-columns: 1fr; gap: 30px; }
  .map-frame { max-width: 100%; margin-left: 0; }
}

@media (max-width: 560px) {
  .hero-arrow { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 14px; }
}